home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / pascal.dci < prev    next >
INI File  |  2002-07-19  |  2KB  |  135 lines

  1. [arrayd | array declaration (var)]
  2. array[0..|] of ;
  3.  
  4. [arrayc | array declaration (const)]
  5. array[0..|] of = ();
  6.  
  7. [cases | case statement]
  8. case | of
  9.   : ;
  10.   : ;
  11. end;
  12.   
  13.  
  14. [casee | case statement (with else)]
  15. case | of
  16.   : ;
  17.   : ;
  18. else ;
  19. end;
  20.   
  21. [classf | class declaration (all parts)]
  22. T| = class(T)
  23. private
  24.  
  25. protected
  26.  
  27. public
  28.  
  29. published 
  30.  
  31. end;
  32.  
  33. [classd | class declaration (no parts)]
  34. T| = class(T)
  35.  
  36. end;
  37.  
  38. [classc | class declaration (with Create/Destroy overrides)]
  39. T| = class(T)
  40. private
  41.  
  42. protected
  43.  
  44. public
  45.   constructor Create; override;
  46.   destructor Destroy; override;
  47. published 
  48.  
  49. end;
  50.  
  51. [fors | for (no begin/end)]
  52. for | :=  to  do
  53.  
  54. [forb | for statement]
  55. for | :=  to  do
  56. begin
  57.  
  58. end;
  59.  
  60. [function | function declaration]
  61. function |(): ;
  62. begin
  63.  
  64. end;
  65.  
  66. [ifs | if (no begin/end)]
  67. if | then
  68.  
  69. [ifb | if statement]
  70. if | then
  71. begin
  72.  
  73. end;
  74.  
  75. [ife | if then (no begin/end) else (no begin/end)]
  76. if | then
  77.  
  78. else
  79.  
  80. [ifeb | if then else]
  81. if | then
  82. begin
  83.  
  84. end
  85. else
  86. begin
  87.  
  88. end;
  89.  
  90. [procedure | procedure declaration]
  91. procedure |();
  92. begin
  93.  
  94. end;
  95.  
  96. [trye | try except]
  97. try
  98.   | 
  99. except
  100.  
  101. end;
  102.  
  103. [tryf | try finally]
  104. try
  105.   | 
  106. finally
  107.  
  108. end;
  109.  
  110. [trycf | try finally (with Create/Free)]
  111. |variable := typename.Create; 
  112. try
  113.  
  114. finally
  115.   variable.Free;
  116. end;
  117.  
  118. [whileb | while statement]
  119. while | do
  120. begin
  121.  
  122. end;
  123.  
  124. [whiles | while (no begin)]
  125. while | do
  126.  
  127. [withb | with statement]
  128. with | do
  129. begin
  130.  
  131. end;
  132.  
  133. [withs | with (no begin)]
  134. with | do
  135.